home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / tclX-6.4 / help / intro / double_quotes < prev    next >
Encoding:
Text File  |  1992-12-17  |  1.0 KB  |  19 lines

  1.      GROUPING ARGUMENTS WITH DOUBLE-QUOTES
  2.           Normally each argument field ends at the next  white  space,
  3.           but  double-quotes  may  be  used  to  create arguments with
  4.           embedded space.  If an argument field begins with a  double-
  5.           quote,  then  the  argument  isn't terminated by white space
  6.           (including  newlines)  or  a  semi-colon  (see   below   for
  7.           information  on  semi-colons);  instead  it ends at the next
  8.           double-quote character.  The double-quotes are not  included
  9.           in the resulting argument.  For example, the command
  10.  
  11.                set a "This is a single argument"
  12.  
  13.           will pass two arguments to set:  a  and  This  is  a  single
  14.           argument.    Within  double-quotes,  command  substitutions,
  15.           variable substitutions, and  backslash  substitutions  still
  16.           occur,  as  described  below.   If  the first character of a
  17.           command field is not a quote, then quotes receive no special
  18.           interpretation in the parsing of that field.
  19.